320e45af9174d2ceba01a620260ded107e3bec29,portal-impl/src/com/liferay/portal/deploy/hot/HookHotDeployListener.java,HookHotDeployListener,verifyCustomJsps,#String#CustomJspBag#,2387
Before Change
List<String> customJsps = customJspBag.getCustomJsps();
for (String customJsp : customJsps) {
int pos = customJsp.indexOf(customJspDir);
String portalJsp = customJsp.substring(
pos + customJspDir.length());
if (currentCustomJsps.contains(portalJsp)) {
collidingCustomJsps.put(portalJsp, servletContextName);
After Change
List<String> customJsps = customJspBag.getCustomJsps();
for (String customJsp : customJsps) {
String portalJsp = getPortalJspName(customJsp, customJspDir);
if (currentCustomJsps.contains(portalJsp)) {
collidingCustomJsps.put(portalJsp, servletContextName);